Skip to main content

User Template Creation Endpoint

Overview

This endpoint allows users to create a new template within a specific collection.

Request Details

HTTP Method

POST

Route

/api/users/[user_id]/collections/[collection_id]/templates

Route Parameters

ParameterTypeRequiredDescription
user_idintegerYesThe ID of the authenticated user
collection_idintegerYesThe ID of the template collection

Headers

HeaderValueRequiredDescription
Acceptapplication/jsonYesSpecifies the response format
Content-Typeapplication/jsonYesRequest body format
Cookieneptun-sessionYesSession authentication cookie

Query Parameters

No query parameters required.

Request Body

FieldTypeRequiredDescription
template.descriptionstringNoDescription of the template
template.file_namestringYesName of the template file
filestringYesContent of the template file

Response Format

Response Status Codes

Status CodeDescription
201Successfully created template
400Bad Request (invalid request body)
401Unauthorized (invalid or missing session)
403Forbidden (user_id mismatch)
404Collection not found
500Server error

Success Response (201 Created)

{
"template": {
"id": 1,
"description": "Basic Docker deployment script",
"file_name": "docker-deploy.sh",
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z",
"neptun_user_id": 1,
"template_collection_id": 1,
"user_file_id": 1
}
}

Error Response (400 Bad Request)

{
"statusCode": 400,
"message": "Invalid body format. Expected { template, file }"
}

TypeScript Interface

interface Template {
id: number
description?: string
file_name: string
created_at: string
updated_at: string
neptun_user_id: number
template_collection_id?: number
user_file_id?: number
}

interface UserFile {
title?: string
text: string
language: string
extension: string
neptun_user_id: number
}

interface CreateTemplateRequest {
template: {
description?: string
file_name: string
neptun_user_id: number
}
file: UserFile
}

interface ApiResponse {
template: Template & UserFile
}

Python Model

from datetime import datetime
from typing import Optional
from pydantic import BaseModel

class UserFile(BaseModel):
title: Optional[str]
text: str
language: str
extension: str
neptun_user_id: int

class TemplateData(BaseModel):
description: Optional[str]
file_name: str
neptun_user_id: int

class CreateTemplateRequest(BaseModel):
template: TemplateData
file: UserFile

class Template(BaseModel):
id: int
description: Optional[str]
file_name: str
created_at: datetime
updated_at: datetime
neptun_user_id: int
template_collection_id: Optional[int]
user_file_id: Optional[int]
title: Optional[str]
text: str
language: str
extension: str

Code Examples

cURL Example

curl -X POST "https://neptun-webui.vercel.app/api/users/1/collections/1/templates" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Cookie: neptun-session=your-session-cookie" \
-d '{
"template": {
"description": "Basic Docker deployment script",
"file_name": "docker-deploy.sh"
},
"file": "#!/bin/bash\ndocker build -t myapp .\ndocker run -d myapp"
}'

Python Example

import httpx
from typing import Optional

async def create_template(
user_id: int,
collection_id: int,
file_name: str,
file_content: str,
description: Optional[str] = None,
session_cookie: str = None
) -> ApiResponse:
url = f"https://neptun-webui.vercel.app/api/users/{user_id}/collections/{collection_id}/templates"

data = {
"template": {
"file_name": file_name,
"description": description
},
"file": file_content
}

async with httpx.AsyncClient() as client:
response = await client.post(
url,
json=data,
headers={
"Accept": "application/json",
"Content-Type": "application/json",
"Cookie": f"neptun-session={session_cookie}"
}
)
response.raise_for_status()
return ApiResponse(**response.json())

TypeScript/JavaScript Example

async function createTemplate(
userId: number,
collectionId: number,
data: CreateTemplateRequest,
sessionCookie: string
): Promise<ApiResponse> {
const response = await fetch(
`https://neptun-webui.vercel.app/api/users/${userId}/collections/${collectionId}/templates`,
{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Cookie': `neptun-session=${sessionCookie}`,
},
body: JSON.stringify(data),
}
)

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}

return await response.json()
}

Notes

  • The session cookie is required for authentication
  • The collection must belong to the specified user
  • The file_name must be unique within the collection
  • The file content must be a valid text file